---
title: "My Iris Dashboard"
author: "Ikansh Mahajan"
output:
flexdashboard::flex_dashboard:
orientation: rows
vertical_layout: fill
source_code: embed
---
```{r setup, include=FALSE}
library(flexdashboard)
data(iris)
df <- iris
```
## Row {data-height=150}
-----------------------------------------------------------------------
### Number of clusters
```{r}
```
### Number of iterations
```{r}
```
### X feature
```{r}
```
### Y feature
```{r}
```
## Row {data-height=500}
-----------------------------------------------------------------------
### Species clusters
```{r}
```
### k-means clusters
```{r}
```
## Row {data-height=350}
-----------------------------------------------------------------------
### Iris data
```{r}
```